home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Output / PAaudiooutput.C < prev    next >
C/C++ Source or Header  |  2005-03-12  |  2KB  |  71 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   PAaudiooutput.C - Audio output for PortAudio
  5.   Copyright (C) 2002 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include "PAaudiooutput.h"
  24.  
  25. Master *PAmaster;
  26. PaStream *stream;
  27. REALTYPE *outl,*outr;
  28.  
  29. int PAprocess(void *inputBuffer,void *outputBuffer,
  30.         unsigned long framesPerBuffer,
  31.         PaTimestamp outTime,void *userData){
  32.  
  33.     if (framesPerBuffer!=SOUND_BUFFER_SIZE) {
  34.     fprintf(stderr,"Bug: PAudioOutput::PAprocess  SOUND_BUFFER_SIZE!=framesPerBuffer");
  35.         fprintf(stderr,"%d %d\n",framesPerBuffer,SOUND_BUFFER_SIZE);
  36.     };
  37.  
  38.     pthread_mutex_lock(&PAmaster->mutex);
  39.      PAmaster->GetAudioOutSamples(SOUND_BUFFER_SIZE,SAMPLE_RATE,outl,outr);
  40.     pthread_mutex_unlock(&PAmaster->mutex);
  41.  
  42.     float *out=(float *)outputBuffer;
  43.  
  44.     for (int i=0;i<framesPerBuffer;i++){
  45.     if (i>=SOUND_BUFFER_SIZE) break;//this should never happens, except only when framesPerBuffer!>SOUND_BUFFER_SIZE
  46.     out[i*2]=outl[i];
  47.     out[i*2+1]=outr[i];
  48.     };
  49.  
  50.     return(0);
  51. };
  52.  
  53. void PAaudiooutputinit(Master *master_){
  54.     PAmaster=master_;
  55.     outl=new REALTYPE [SOUND_BUFFER_SIZE];
  56.     outr=new REALTYPE [SOUND_BUFFER_SIZE];
  57.     Pa_Initialize();
  58.     Pa_OpenDefaultStream(&stream,0,2,paFloat32,SAMPLE_RATE,SOUND_BUFFER_SIZE,0,PAprocess,NULL);
  59.     Pa_StartStream(stream);
  60. };
  61.  
  62. void PAfinish(){
  63.     Pa_StopStream(stream);
  64.     delete (outl);
  65.     delete (outr);
  66. };
  67.  
  68.  
  69.  
  70.  
  71.